home *** CD-ROM | disk | FTP | other *** search
- '------------------------------------------------------------------------
- 'Description:
- '
- 'Created by: ½Prog╗
- 'Created on: ½Date╗
- '
- 'Sections: 1. Variables declarations
- ' 2. Main section
- ' 3. Error trapping section
- '
- 'Input: Variable Type Description
- ' »»»»»»»» »»»» »»»»»»»»»»»
- '
- '
- 'Output: Variable Type Description
- ' »»»»»»»» »»»» »»»»»»»»»»»
- '
- '
- 'Modification: Date Programmer Description
- ' »»»» »»»»»»»»»» »»»»»»»»»»»
- '
- '------------------------------------------------------------------------
- On Error GoTo Err_½Proc╗
-
- '------------------------------------------------------------------------
- ' 1. Variables declarations
- '------------------------------------------------------------------------
-
-
- '------------------------------------------------------------------------
- ' 2. Main section
- '------------------------------------------------------------------------
-
- Exit_½Proc╗:
- Exit ½Type╗
-
- '------------------------------------------------------------------------
- ' 3. Error trapping section
- '------------------------------------------------------------------------
- Err_½Proc╗:
- MsgBox "Error #" & Err.Number _
- & " in " & Me.Name & ".½Proc╗" _
- & vbCrLf & vbCrLf & "Description: " & Err.Description
- Resume Exit_½Proc╗